Models API Reference
The Models API allows you to list and retrieve information about the models available on the platform.
List Models
This endpoint returns a list of all available models.
Endpoint
Example Request
- cURL
- Python
- JavaScript
curl https://api.inceptron.io/v1/models \
-H "Authorization: Bearer $INCEPTRON_API_KEY"
import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.inceptron.io/v1",
api_key=os.environ["INCEPTRON_API_KEY"],
)
models = client.models.list()
print(models)
import { OpenAI } from "openai";
const client = new OpenAI({
baseURL: "https://api.inceptron.io/v1",
apiKey: process.env.INCEPTRON_API_KEY,
});
const models = await client.models.list();
console.log(models);
Example Response
{
"object": "list",
"data": [
{
"id": "meta-llama/Llama-3.3-70B-Instruct",
"object": "model",
"created": 1677606400,
"owned_by": "inceptron"
},
{
"id": "gpt-4",
"object": "model",
"created": 1677606400,
"owned_by": "openai"
}
]
}
List of Available Models
| ID | Deployment Mode |
|---|---|
meta-llama/Llama-3.3-70B-Instruct | Serverless |
meta-llama/Llama-3.1-8B-Instruct | Custom |
meta-llama/Llama-3.2-1B-Instruct | Custom |
google/gemma-3-27b-it | Custom |
Qwen/Qwen3-Coder-30B-A3B-Instruct | Custom |
Qwen/Qwen3-VL-235B-A22B-Instruct | Custom |
Qwen/Qwen2.5-72B-Instruct | Custom |
openai/gpt-oss-20b | Custom |
deepseek-ai/DeepSeek-R1-0528 | Custom |
deepseek-ai/DeepSeek-V3-0324 | Custom |
deepseek-ai/DeepSeek-V3.1 | Custom |
moonshotai/Kimi-K2-Thinking | Custom |
zai-org/GLM-4.6 | Custom |